home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / dev / c / amiga-c-jun99.lha / amiga-c / june1999 / files / testme.c < prev   
Encoding:
C/C++ Source or Header  |  1999-07-03  |  518 b   |  24 lines

  1. #include <stdio.h>
  2.  
  3. #include <clib/exec_protos.h>
  4. #include <clib/intuition_protos.h>
  5.  
  6. struct Library *IntuitionBase;
  7.  
  8. extern __far char LVODisplayBeep[];
  9.  
  10. #define CallBeep(base, screen) ((void (*)(register __a6 struct Library *, register __a0 struct Screen *))((UBYTE *)base + (long)LVODisplayBeep))(base, screen)
  11.  
  12. void main(void)
  13. {
  14.  if (IntuitionBase = OpenLibrary("intuition.library", 37L))
  15.   {
  16.  
  17.    printf("Call DisplayBeep using LVO!!!\n");
  18.  
  19.    CallBeep(IntuitionBase, NULL);
  20.  
  21.    CloseLibrary(IntuitionBase);
  22.   }
  23. }
  24.